iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 25
0

前言

這一次來教大家Python還蠻重要的imposrt模組。

python 模組

1. 查詢模組參數

import 模組名稱
dir(模組名稱) 

2. 引入模組

第一種:from 模組名稱 import *
第二種:from 模組名稱 import 函數名稱
第三種:import 模組名稱

3. 範例

  1. import 模組

    • my_module.py
    my_var = 10
    
    def my_func():
        print "This is the function inside the module"
    
    print "This will be executed"
    
    • my_app.py
    import my_module
    print "This is my app"
    
  2. 藉由import 模組,使用模組內的函式與常數

    • my_module.py
    my_var = 10
    
    def my_func():
        print "This is the function inside the module"
    
    print "This will be executed"
    
    • my_app2.py
    import my_module
    print "This is my app"
    print my_module.my_var
    my_module.my_func()
    
  3. 如果在非直接執行module,可不出現解釋文字

    • my_module2.py
    my_var = 10
    def my_func():
        print "This is the function inside the module"
    
    if __name__ == '__main__':
        print "This will be executed"
    
    • my_app3.py
    import my_module2
    print "This is my app"
    print my_module2.my_var
    my_module2.my_func()
    

上一篇
Day-24 APP檢測篇-公鑰憑證
下一篇
Day-26 Python2基本語法 -6
系列文
在資訊宅中打滾的通訊系生30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言